* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fafafa;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 1rem;
}
 
.container {
  max-width: 460px;
  width: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
}
 
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
 
.profile-pic {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
 
.text-block h2 {
  font-size: 1.4rem;
  font-weight: 600;
}
 
.text-block p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.25rem;
}

.contact-info {
  margin-top: 1.5rem;
  color: #666;
}
 
.contact-info p {
  font-size: 0.95rem;
  margin: 0.5rem 0;
  color: #666; 
}
 
/*.contact-info a {
  color: #666; 
  text-decoration: none;
}*/
 
/*.contact-info a:hover {
  text-decoration: underline;
}*/
  
.links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
 
.link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #eee;
  transition: transform 0.3s ease;
}
 
.link:hover {
  transform: scale(1.1);
}
 
.icon {
  width: 28px;
  height: 28px;
}
 
.vimeo {
  background-color: #1ab7ea;
}
 
.soundcloud {
  background-color: #ff5500;
}